BMI Calculator

In this python project, we create a simple BMI calculator . Here is a step to step walk through of the project.

  1. BMI Formula
  2. We start by writing out the formula that will be used to calculate the Body Mass Index of a user.

    Fullscreen Image

  3. Different BMI threshhold
  4. We then write out the various threshhold that will be used to put users into various categories.

    Fullscreen Image

  5. BMI Calculator
  6. We then write out the code for the calculator. The aim is to prompt the user for their weight and height and using this calculate their Body Mass Index.

    Fullscreen Image

  7. Calculator in Action
  8. We then test the calculator out to see whether it functions as intended.

    Fullscreen Image

    To download and view the full project on GitHub, click here.